projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7293e05
)
netconsole: mark local funcs with static
author
Mike Frysinger
<
[email protected]
>
Mon, 21 Dec 2009 19:19:12 +0000
(14:19 -0500)
committer
Wolfgang Denk
<
[email protected]
>
Sun, 17 Jan 2010 23:21:49 +0000
(
00:21
+0100)
Signed-off-by: Mike Frysinger <
[email protected]
>
drivers/net/netconsole.c
patch
|
blob
|
history
diff --git
a/drivers/net/netconsole.c
b/drivers/net/netconsole.c
index f5329a594e8c2d7367ddf37ab30ae230e42dff3a..e27bb3e71db9b0e593681f038bf36cb10cf675bb 100644
(file)
--- a/
drivers/net/netconsole.c
+++ b/
drivers/net/netconsole.c
@@
-139,7
+139,7
@@
static void nc_send_packet (const char *buf, int len)
eth_halt ();
}
-
int nc_start
(void)
+
static int nc_start
(void)
{
int netmask, our_ip;
@@
-169,7
+169,7
@@
int nc_start (void)
return 0;
}
-
void nc_putc
(char c)
+
static void nc_putc
(char c)
{
if (output_recursion)
return;
@@
-180,7
+180,7
@@
void nc_putc (char c)
output_recursion = 0;
}
-
void nc_puts
(const char *s)
+
static void nc_puts
(const char *s)
{
int len;
@@
-196,7
+196,7
@@
void nc_puts (const char *s)
output_recursion = 0;
}
-
int nc_getc
(void)
+
static int nc_getc
(void)
{
uchar c;
@@
-217,7
+217,7
@@
int nc_getc (void)
return c;
}
-
int nc_tstc
(void)
+
static int nc_tstc
(void)
{
struct eth_device *eth;